Skip to main content

Template placeholder

Values that are passed to a template by using Arguments/Parameters can be used to replace “Placeholders” used within any type of element. For example a Text element can contain a placeholder in the form of “{{TEST_VALUE}}”. This will result in the placeholder to be replaced by whatever value the “TEST_VALUE” parameter has.

Date Format

If you want to format a parameter of type DATE to a readable date on a page. You can use the “dateformat” function that will result in a date formatted like this: dd/MM/yyyy

Example: {{ MY_DATE | dateformat }} results in 26/03/1986

Datetime Format

If you want to format a parameter of type DATE to a readable datetime on a page. You can use the “datetimeformat” function that will result in a date formatted like this: dd/MM/yyyy HH:mm:ss

Example: {{ MY_DATE | dateformat }} results in 26/03/1986 12:51:24

JSON

If you want to format a parameter of type OBJECT to a readable json on a page. You can use the “json” function that will result in a formatted json string.

Example: {{ MY_OBJECT | json }} results in

{
“name”: “Tristan”,
”birthDate”: “26/03/1986”
}

Default value